home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 January / Disc 3 / Amethyst.iso / live / boot / .buildit.sh next >
Encoding:
Text File  |  2001-11-21  |  333 b   |  22 lines

  1. # buildit.sh
  2. # script to build cdrom image
  3. # copyright (c) 2001 joseph cheek.  all rights reserved.
  4. # released under gpl
  5.  
  6.  
  7. # remove grub subdir
  8.  
  9. rmdir grub
  10.  
  11. # copy system map
  12.  
  13. cp /boot/System.map* .
  14.  
  15. # are the kernels the same?  create a symlink
  16.  
  17. if diff -q vml* &>/dev/null; then
  18.   a=`echo vmlinuz-pc97-*`
  19.   rm $a
  20.   ln -s vm* $a
  21. fi
  22.